home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / util / libs / chunky_dev.lha / chunky_dev / Demos / _shared / loadcp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-15  |  398 b   |  19 lines

  1. //
  2. // chunky.library Demo
  3. //
  4. // MODULE: reading of raw chunky data from disk
  5. //
  6. // Public Domain.  (c) 1999 Rosande Limited, all rights reserved.
  7.  
  8. #ifndef DEMO_LOADCP_H
  9. #define DEMO_LOADCP_H
  10.  
  11. #include <exec/types.h>
  12.  
  13. void DEMO_FreeChunky(UBYTE *buf);
  14. void DEMO_FreeRGB32(void *buf);
  15. UBYTE *DEMO_LoadChunky(STRPTR FileName, ULONG Width, ULONG Height);
  16. void *DEMO_LoadRGB32(STRPTR FileName);
  17.  
  18. #endif
  19.